Key Sequence Detection


Posted by wayne201299 on 2023-09-28

為網站添加secret code,輸入後會有小彩蛋

  1. 監聽鍵盤點擊事件
  2. 將點擊的案件推入計算陣列後比對
    const pressed = [];
     const secretcode = 'alan'
     window.addEventListener("keyup", (e) => {
       pressed.push(e.key);
       pressed.splice(-secretcode.length - 1, pressed.length - secretcode.length);
       if (pressed.join('').includes(secretcode)) {
         cornify_add();
       }
     })
    

Konami Code
在前端開發中,Konami Code 通常指的是以下按鍵序列:
上箭頭、上箭頭、下箭頭、下箭頭、左箭頭、右箭頭、左箭頭、右箭頭、B 鍵、A 鍵、Enter(或 Return)鍵


#javascript #html







Related Posts

Day04 你知道 setTimout、setInterval、requestAnimationFrame API 三者的關係嗎

Day04 你知道 setTimout、setInterval、requestAnimationFrame API 三者的關係嗎

Day02 - CSS的數值單位與字型

Day02 - CSS的數值單位與字型

IC Design Contest Cell-Based 考古題 分享 及 比賽心得

IC Design Contest Cell-Based 考古題 分享 及 比賽心得


Comments